home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / emac16ds.zip / EMACS.DEF < prev    next >
Text File  |  1991-08-03  |  288b  |  24 lines

  1. ;Macro to quickly move memory.
  2.  
  3. ;File BUFFERS.ASM:
  4. ;File MINTPRIM.ASM:
  5. ;File MEMORY.ASM:
  6. ;File MINTFORM.ASM:
  7. ;File MINTSCAN.ASM:
  8. ;File EMACS.ASM:
  9.  
  10.   if 1
  11. movmem    macro
  12.     local    x
  13.     shr    cx,1
  14.     jnc    x
  15.     movsb
  16. x:    rep    movsw
  17.     endm
  18.   else
  19. movmem    macro
  20.     rep    movsb
  21.     endm
  22.   endif
  23.  
  24.